home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / defacements / defesa / Site da Defesa Civil RJ - Bombeiros_arquivos / index.php
Encoding:
Text File  |  2003-12-04  |  21.0 KB  |  481 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <!-- saved from url=(0078)http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/index.php -->
  3. <HTML><HEAD><TITLE>Site da Defesa Civil RJ / Bombeiros</TITLE>
  4. <META http-equiv=Content-Type content="text/html; charset=windows-1252">
  5. <SCRIPT type=text/javascript>
  6. <!--
  7. function isEmpty(s) {
  8. return ((s == null) || (s.length == 0));
  9. }
  10.  
  11. function isWhitespace(s){
  12. var reWhitespace = /^\s+$/;
  13. return (isEmpty(s) || reWhitespace.test(s));
  14. }
  15.  
  16. function isEmail(s){
  17. var reEmail = /^.+\@.+\..+$/;
  18. return reEmail.test(s);
  19. }
  20.  
  21. //-->
  22. <!--
  23. function ValidaFeedback() {
  24. if (isWhitespace(document.dados_feedback.sender_name.value)==true){
  25. alert("Informe seu nome.");
  26. document.dados_feedback.sender_name.focus();
  27. return false;
  28. }
  29. if (isWhitespace(document.dados_feedback.sender_email.value)==true){
  30. alert("Informe seu email.");
  31. document.dados_feedback.sender_email.focus();
  32. return false;
  33. }
  34. if (isEmail(document.dados_feedback.sender_email.value)==false){
  35. alert("Digite um endereτo de email vßlido.");
  36. document.dados_feedback.sender_email.focus();
  37. return false;
  38. }
  39. if (isWhitespace(document.dados_feedback.message.value)==true){
  40. alert("Digite a mensagem a enviar.");
  41. document.dados_feedback.message.focus();
  42. return false;
  43. }
  44. return true;
  45. }
  46. //-->
  47. <!--
  48. function ValidaRecomSite() {
  49. if (isWhitespace(document.dados_recom_site.yname.value)==true){
  50. alert("Preencha todos os campos antes de enviar.");
  51. document.dados_recom_site.yname.focus();
  52. return false;
  53. }
  54. if (isWhitespace(document.dados_recom_site.ymail.value)==true){
  55. alert("Preencha todos os campos antes de enviar.");
  56. document.dados_recom_site.ymail.focus();
  57. return false;
  58. }
  59. if (isEmail(document.dados_recom_site.ymail.value)==false){
  60. alert("Endereτo de email invßlido.");
  61. document.dados_recom_site.ymail.focus();
  62. return false;
  63. }
  64. if (isWhitespace(document.dados_recom_site.fname.value)==true){
  65. alert("Preencha todos os campos antes de enviar.");
  66. document.dados_recom_site.fname.focus();
  67. return false;
  68. }
  69. if (isWhitespace(document.dados_recom_site.fmail.value)==true){
  70. alert("Preencha todos os campos antes de enviar.");
  71. document.dados_recom_site.fmail.focus();
  72. return false;
  73. }
  74. if (isEmail(document.dados_recom_site.fmail.value)==false){
  75. alert("Endereτo de email invßlido.");
  76. document.dados_recom_site.fmail.focus();
  77. return false;
  78. }
  79. return true;
  80. }
  81. //-->
  82. <!--
  83. function ValidaComent() {
  84. if (isWhitespace(document.comentario.subject.value)==true){
  85. alert("O campo 'Tφtulo' nπo pode estar em branco.");
  86. document.comentario.subject.focus();
  87. return false;
  88. }
  89. if (isWhitespace(document.comentario.comment.value)==true){
  90. alert("Digite seu comentßrio antes de enviar.");
  91. document.comentario.comment.focus();
  92. return false;
  93. }
  94. return true;
  95. }
  96. //-->
  97. <!-- //hide
  98.  
  99.  
  100. function fillmessagebox(text) {
  101.   document.form.message.value = text;
  102. }
  103.  
  104. function openpopup(url,name,options,fullscreen) {
  105.   fullurl = "http://learningcenter.lcl.com.br" + url;
  106.   windowobj = window.open(fullurl,name,options);
  107.   if (fullscreen) {
  108.      windowobj.moveTo(0,0);
  109.      windowobj.resizeTo(screen.availWidth,screen.availHeight); 
  110.   }
  111.   windowobj.focus();
  112.   return false;
  113. }
  114.  
  115. function copyrichtext(textname) { 
  116.   textname.value = document.richedit.docHtml;
  117.   return true;
  118. }
  119.  
  120. function checkall() {
  121.   void(d=document);
  122.   void(el=d.getElementsByTagName('INPUT'));
  123.   for(i=0;i<el.length;i++)
  124.     void(el[i].checked=1) 
  125. }
  126.  
  127. function inserttext(text) {
  128.   text = ' ' + text + ' ';
  129.   if ( opener.document.forms['theform'].message.createTextRange && opener.document.forms['theform'].message.caretPos) {
  130.     var caretPos = opener.document.forms['theform'].message.caretPos;
  131.     caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
  132.   } else {
  133.     opener.document.forms['theform'].message.value  += text;
  134.   }
  135.   opener.document.forms['theform'].message.focus();
  136. }
  137.  
  138. function lockoptions(form, master, subitems) {
  139.   // subitems is an array of names of sub items
  140.   // requires that each item in subitems has a 
  141.   // companion hidden item in the form with the 
  142.   // same name but prefixed by "h"
  143.   if (eval("document."+form+"."+master+".checked")) {
  144.     for (i=0; i<subitems.length; i++) {
  145.       unlockoption(form, subitems[i]);
  146.     }
  147.   } else {
  148.     for (i=0; i<subitems.length; i++) {
  149.       lockoption(form, subitems[i]);
  150.     }
  151.   }
  152.   return(true);
  153. }
  154. function lockoption(form,item) {
  155.   eval("document."+form+"."+item+".disabled=true");/* IE thing */
  156.   eval("document."+form+".h"+item+".value=1");
  157. }
  158. function unlockoption(form,item) {
  159.   eval("document."+form+"."+item+".disabled=false");/* IE thing */
  160.   eval("document."+form+".h"+item+".value=0");
  161. }
  162.  
  163.  
  164. // done hiding -->
  165. </SCRIPT>
  166. <LINK href="themes/sedec/style/style.css" type=text/css rel=StyleSheet>
  167. <META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
  168. <BODY>
  169. <TABLE cellSpacing=0 cellPadding=0 width=760 align=center border=0>
  170.   <TBODY>
  171.   <TR>
  172.     <TD align=middle><A href="http://www.delta5.com.br/"><IMG src="" 
  173.       border=0></A></TD></TR></TBODY></TABLE><!-- FIM DO TITULO -->
  174. <TABLE cellSpacing=0 cellPadding=0 width=760 align=center bgColor=#ffffff 
  175. border=0>
  176.   <TBODY>
  177.   <TR vAlign=top>
  178.     <TD vAlign=top width=150>
  179.       <TABLE cellSpacing=0 cellPadding=0 width=150 border=0>
  180.         <TBODY>
  181.         <TR>
  182.           <TD>
  183.             <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
  184.               <TBODY>
  185.               <TR height=25>
  186.                 <TD background=""><FONT color=#666666><B>:: Menu 
  187.                   Principal</B></FONT></TD></TR>
  188.               <TR vAlign=top>
  189.                 <TD background="">
  190.                   <TABLE width="100%" border=0>
  191.                     <TBODY>
  192.                     <TR>
  193.                       <TD><A 
  194.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=1">Conhecendo 
  195.                         a SEDEC</A></TD></TR>
  196.                     <TR>
  197.                       <TD>
  198.                         <HR color=#e6ebec noShade SIZE=1>
  199.                         <A 
  200.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=2">Conhecendo 
  201.                         o CBMERJ</A></TD></TR>
  202.                     <TR>
  203.                       <TD>
  204.                         <HR color=#e6ebec noShade SIZE=1>
  205.                         <A 
  206.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=3">Concursos 
  207.                         e Cursos</A></TD></TR>
  208.                     <TR>
  209.                       <TD>
  210.                         <HR color=#e6ebec noShade SIZE=1>
  211.                         <A 
  212.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=4">D·vidas 
  213.                         Freqⁿentes</A></TD></TR>
  214.                     <TR>
  215.                       <TD>
  216.                         <HR color=#e6ebec noShade SIZE=1>
  217.                         <A 
  218.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=5">Projetos</A></TD></TR>
  219.                     <TR>
  220.                       <TD>
  221.                         <HR color=#e6ebec noShade SIZE=1>
  222.                         <A 
  223.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=6">Licitaτ⌡es</A></TD></TR>
  224.                     <TR>
  225.                       <TD>
  226.                         <HR color=#e6ebec noShade SIZE=1>
  227.                         <A 
  228.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=7">Informaτ⌡es 
  229.                         TΘcnicas</A></TD></TR>
  230.                     <TR>
  231.                       <TD>
  232.                         <HR color=#e6ebec noShade SIZE=1>
  233.                         <A 
  234.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=8">Hinos</A></TD></TR>
  235.                     <TR>
  236.                       <TD>
  237.                         <HR color=#e6ebec noShade SIZE=1>
  238.                         <A 
  239.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Content&pa=list_pages_categories&cid=9">Unidades 
  240.                         Operacionais</A></TD></TR>
  241.                     <TR>
  242.                       <TD>
  243.                         <HR color=#006b9f noShade SIZE=2>
  244.                         <A 
  245.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Stories_Archive">Arquivo 
  246.                         de Notφcias</A></TD></TR>
  247.                     <TR>
  248.                       <TD>
  249.                         <HR color=#e6ebec noShade SIZE=1>
  250.                         <A 
  251.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Surveys">Enquetes 
  252.                         Anteriores</A></TD></TR>
  253.                     <TR>
  254.                       <TD>
  255.                         <HR color=#e6ebec noShade SIZE=1>
  256.                         <A 
  257.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Web_Links">Links 
  258.                         Selecionados</A></TD></TR>
  259.                     <TR>
  260.                       <TD>
  261.                         <HR color=#e6ebec noShade SIZE=1>
  262.                         <A 
  263.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Feedback">Fale 
  264.                         Conosco</A></TD></TR>
  265.                     <TR>
  266.                       <TD>
  267.                         <HR color=#e6ebec noShade SIZE=1>
  268.                         <A 
  269.                         href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/index.html">Voltar 
  270.                         α Pßgina Inicial</A></TD></TR></TBODY></TABLE></TD></TR>
  271.               <TR height=5>
  272.                 <TD background=""></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR>
  273.       <TABLE cellSpacing=0 cellPadding=0 width=150 border=0>
  274.         <TBODY>
  275.         <TR>
  276.           <TD>
  277.             <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
  278.               <TBODY>
  279.               <TR height=25>
  280.                 <TD background=""><FONT color=#666666><B>:: 
  281.                 Enquete</B></FONT></TD></TR>
  282.               <TR vAlign=top>
  283.                 <TD background="">
  284.                   <FORM action=modules.php?name=Surveys method=post><INPUT 
  285.                   type=hidden value=5 name=pollID><INPUT type=hidden 
  286.                   value=modules.php?name=Surveys&op=results&pollID=5 
  287.                   name=forwarder><FONT class=content><B>O que vocΩ achou deste 
  288.                   novo Site?</B></FONT><BR><BR>
  289.                   <TABLE width="100%" border=0>
  290.                     <TBODY>
  291.                     <TR>
  292.                       <TD vAlign=top><INPUT type=radio value=1 name=voteID></TD>
  293.                       <TD width="100%"><FONT class=content>Muito 
  294.                     bom</FONT></TD></TR>
  295.                     <TR>
  296.                       <TD vAlign=top><INPUT type=radio value=2 name=voteID></TD>
  297.                       <TD width="100%"><FONT class=content>Bom</FONT></TD></TR>
  298.                     <TR>
  299.                       <TD vAlign=top><INPUT type=radio value=3 name=voteID></TD>
  300.                       <TD width="100%"><FONT class=content>Tem que melhorar um 
  301.                         pouco</FONT></TD></TR></TBODY></TABLE><BR>
  302.                   <CENTER><FONT class=content><INPUT type=image 
  303.                   src=""></FONT></FORM><FONT class=content>[<A 
  304.                   href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Surveys&op=results&pollID=5&mode=&order=&thold="><B>Resultado</B></A> 
  305.                   | <A 
  306.                   href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=Surveys"><B>Enquetes</B></A>]<BR><BR>Votos: 
  307.                   <B>161</B> </FONT></CENTER></TD></TR>
  308.               <TR height=5>
  309.                 <TD background=""></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR>
  310.       <TABLE cellSpacing=0 cellPadding=0 width=150 border=0>
  311.         <TBODY>
  312.         <TR>
  313.           <TD>
  314.             <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
  315.               <TBODY>
  316.               <TR height=25>
  317.                 <TD background=""><FONT color=#666666><B>:: Quem estß 
  318.                   on-line?</B></FONT></TD></TR>
  319.               <TR vAlign=top>
  320.                 <TD background="">
  321.                   <CENTER><FONT class=content>Estπo on-line atualmente, 17 
  322.                   visitante(s) 0 usußrio(s)<BR></FONT></CENTER></TD></TR>
  323.               <TR height=5>
  324.                 <TD background=""></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR>
  325.       <TABLE cellSpacing=0 cellPadding=0 width=150 border=0>
  326.         <TBODY>
  327.         <TR>
  328.           <TD>
  329.             <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
  330.               <TBODY>
  331.               <TR height=25>
  332.                 <TD background=""><FONT color=#666666><B>:: Acesso 
  333.                   Restrito</B></FONT></TD></TR>
  334.               <TR vAlign=top>
  335.                 <TD background="">
  336.                   <FORM action=modules.php?name=Your_Account method=post><FONT 
  337.                   class=content>   Login:  <INPUT 
  338.                   maxLength=25 size=10 name=uname><BR>   Senha: 
  339.                   <INPUT type=password maxLength=20 size=10 name=pass><BR><INPUT 
  340.                   type=hidden value=login name=op><BR>
  341.                   <CENTER><INPUT type=image src=""></FONT></CENTER></FORM></TD></TR>
  342.               <TR height=5>
  343.                 <TD 
  344.     background=""></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR></TD>
  345.     <TD vAlign=top width="100%">
  346.       <TABLE cellSpacing=0 cellPadding=0 width="100%" bgColor=#ffffff 
  347.         border=0><TBODY>
  348.         <TR>
  349.           <TD>
  350.             <CENTER><FONT class=option color=#000000><B><IMG 
  351.             src=""></B></FONT></CENTER><BR></TD></TR></TBODY></TABLE><BR>
  352.       <TABLE cellSpacing=0 cellPadding=0 width=400 align=center border=0>
  353.         <TBODY>
  354.         <TR vAlign=top>
  355.           <TD><FONT class=destaque><B>
  356.             <H1>h4ck3rsBr</B></FONT> </H1></TD></TR>
  357.         <TR>
  358.           <TD>
  359.             <P align=justify><FONT class=content><BR>
  360.             <H1>h4ck3rsBr ownz your system by pitt3r_p4rk3r | Ta Foda Achar 
  361.             sites vuls Hj Em Dia Viu<BR><BR></FONT>
  362.             <P></P></H1></TD></TR>
  363.         <TR>
  364.           <TD align=right bgColor=#ffffff><FONT class=content>Em 28/11/2003 | 
  365.             25 Leituras | <A 
  366.             href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=News&file=article&sid=21">Comentßrios?</A> 
  367.             | <A 
  368.             href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=News&file=article&sid=21"><B>Leia 
  369.             mais..</B></A></FONT><BR>
  370.             <HR color=#7d9ec0 SIZE=1>
  371.           </TD></TR></TBODY></TABLE><BR>
  372.       <TABLE cellSpacing=0 cellPadding=0 width=400 align=center border=0>
  373.         <TBODY>
  374.         <TR vAlign=top>
  375.           <TD><FONT class=destaque><B>SEDEC lanτa sua nova pßgina na 
  376.             Internet</B></FONT> </TD></TR>
  377.         <TR>
  378.           <TD>
  379.             <P align=justify><FONT class=content><BR>A Secretaria de Estado da 
  380.             Defesa Civil do Estado do Rio de Janeiro coloca no ar seu novo 
  381.             Portal Web, para melhor atender ao p·blico interno e externo. 
  382.             Ficarφamos imensamente gratos se pudermos contar com suas crφticas e 
  383.             sugest⌡es enquanto estamos reorganizando o conte·do da 
  384.             pßgina.<BR><BR></FONT></P></TD></TR>
  385.         <TR>
  386.           <TD align=right bgColor=#ffffff><FONT class=content>Em 19/11/2003 | 
  387.             119 Leituras | 5 Comentßrios | <A 
  388.             href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=News&file=article&sid=2"><B>Leia 
  389.             mais..</B></A></FONT><BR>
  390.             <HR color=#7d9ec0 SIZE=1>
  391.           </TD></TR></TBODY></TABLE><BR>
  392.       <TABLE cellSpacing=0 cellPadding=0 width=400 align=center border=0>
  393.         <TBODY>
  394.         <TR vAlign=top>
  395.           <TD><FONT class=destaque><B>Acesso aos Boletins Ostensivos da 
  396.             SEDEC</B></FONT> </TD></TR>
  397.         <TR>
  398.           <TD>
  399.             <P align=justify><FONT class=content><BR>Temporariamente, o acesso 
  400.             aos Boletins Ostensivos da Secretaria de Estado da Defesa Civil/RJ 
  401.             estß sendo feito atravΘs da pßgina provis≤ria do CBMERJ, em <A 
  402.             href="http://www.cbmerj.rj.gov.br/doc_down/bols/" 
  403.             target=_new>http://www.cbmerj.rj.gov.br/doc_down/bols/</A>.<BR><BR></FONT></P></TD></TR>
  404.         <TR>
  405.           <TD align=right bgColor=#ffffff><FONT class=content>Em 19/11/2003 | 
  406.             180 Leituras | <A 
  407.             href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/modules.php?name=News&file=article&sid=1"><B>Leia 
  408.             mais..</B></A></FONT><BR>
  409.             <HR color=#7d9ec0 SIZE=1>
  410.           </TD></TR></TBODY></TABLE><BR></TD>
  411.     <TD vAlign=top width=150>
  412.       <TABLE cellSpacing=0 cellPadding=0 width=150 border=0>
  413.         <TBODY>
  414.         <TR>
  415.           <TD>
  416.             <TABLE cellSpacing=0 cellPadding=5 width="100%" border=0>
  417.               <TBODY>
  418.               <TR height=25>
  419.                 <TD background=""><FONT color=#707070><B>:: Procurar 
  420.                   Notφcias</B></FONT> </TD></TR>
  421.               <FORM action=modules.php?name=Search method=post>
  422.               <TR vAlign=top>
  423.                 <TD align=middle background=""><INPUT size=15 name=query> 
  424.                   <INPUT type=image src=""> </TD></FORM>
  425.               <TR height=5>
  426.                 <TD background=""></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR>
  427.       <TABLE cellSpacing=0 cellPadding=0 width=150 border=0>
  428.         <TBODY>
  429.         <TR>
  430.           <TD>
  431.             <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
  432.               <TBODY>
  433.               <TR height=25>
  434.                 <TD background=""><FONT color=#666666><B>:: 
  435.                   Destaques</B></FONT></TD></TR>
  436.               <TR vAlign=top>
  437.                 <TD background="">
  438.                   <CENTER><A 
  439.                   href="http://sabia.proderj.rj.gov.br/iXpress/rti/paginas/consulta.DML" 
  440.                   target=new><IMG src="" width=90 border=0></A><BR><BR><A 
  441.                   href="http://tucupi.cptec.inpe.br/tempo/cidades/rio_janeiro.shtml" 
  442.                   target=new><IMG src="" width=90 border=0></A><BR><BR><A 
  443.                   href="http://sabia.proderj.rj.gov.br/iXpress/upo/protocolo/upofram.dml" 
  444.                   target=new><IMG src="" width=90 border=0></A><BR><BR><A 
  445.                   href="http://www.governo.rj.gov.br/pagamento.asp" 
  446.                   target=new><IMG src="" width=90 border=0></A><BR><BR><A 
  447.                   href="http://www.governo.rj.gov.br/" target=new><IMG src="" 
  448.                   width=90 border=0></A><BR><BR><A 
  449.                   href="http://www.arefinariaenossa.com.br/" target=new><IMG 
  450.                   src="" width=90 border=0></A><BR></CENTER></TD></TR>
  451.               <TR height=5>
  452.                 <TD background=""></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR>
  453.       <TABLE cellSpacing=0 cellPadding=0 width=150 border=0>
  454.         <TBODY>
  455.         <TR>
  456.           <TD>
  457.             <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
  458.               <TBODY>
  459.               <TR height=25>
  460.                 <TD background=""><FONT color=#666666><B>:: Notφcias 
  461.                   Anteriores</B></FONT></TD></TR>
  462.               <TR vAlign=top>
  463.                 <TD background="">
  464.                   <CENTER>No momento, nπo hß conte·do para ser mostrado neste 
  465.                   bloco.</CENTER></TD></TR>
  466.               <TR height=5>
  467.                 <TD 
  468.     background=""></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR></TD></TR></TBODY></TABLE>
  469. <TABLE cellSpacing=0 cellPadding=0 width=760 align=center border=0>
  470.   <TBODY>
  471.   <TR bgColor=#a8a8a8 height=2>
  472.     <TD colSpan=2></TD></TR>
  473.   <TR>
  474.     <TD align=left width="50%"><FONT class=content><BR>Melhor visualizado em 
  475.       resoluτπo 800x600. <BR>Desenvolvido por <A 
  476.       href="http://www.lcl.com.br/">LCL Design & Systems Ltda.</A> <BR>Web 
  477.       site engine is Copyright ⌐ 2002 by PHP-Nuke.<BR></FONT></TD>
  478.     <TD align=right width="50%"><BR><A 
  479.       href="http://www.delta5.com.br/mirror/2003/11/30/www.defesacivil.rj.gov.br/admin.php"><IMG 
  480.       src="" border=0></A> </TD></TR></TBODY></TABLE></BODY></HTML>
  481.